8d6a29bdf28b3aa2145bc6004c55e3deb8b1aceb,src/main/java/net/sharkfw/knowledgeBase/sync/SyncKB.java,SyncKB,createASIPSpace,#STSet#STSet#PeerSTSet#PeerSemanticTag#PeerSTSet#TimeSTSet#SpatialSTSet#number#,522

Before Change


    @Override
    public ASIPSpace createASIPSpace(STSet topics, STSet types, PeerSTSet approvers, PeerSemanticTag sender, PeerSTSet receiver, TimeSTSet times, SpatialSTSet locations, int direction) throws SharkKBException {
        this.changed();
        return this.targetKB.createASIPSpace(topics, types, approvers, sender, receiver, times, locations, direction);
    }

    @Override

After Change



    @Override
    public ASIPSpace createASIPSpace(STSet topics, STSet types, PeerSTSet approvers, PeerSemanticTag sender, PeerSTSet receiver, TimeSTSet times, SpatialSTSet locations, int direction) throws SharkKBException {
        ASIPSpace asipSpace = this.targetKB.createASIPSpace(topics, types, approvers, sender, receiver, times, locations, direction);
        this.changed();
        return asipSpace;
    }

    @Override